home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '87 / DA's / DlgSans ƒ / RemoveMe.LSP < prev    next >
Text File  |  1987-04-18  |  415b  |  12 lines

  1. { This program part allows you to debug zFKEY under the                             }
  2. { Lightspeed Pascal Environment.  When you are finished debugging or want     }
  3. { to see how zFKEY works, (1) Remove this file AND MacPasLib from the         }
  4. { Project, (2) Add DA PasLib, and (3) BUILD & SAVE AS... a code resource.     }
  5.  
  6.  
  7. PROGRAM RemoveThisFileWhenBuildingAndSavingAsFKEYCodeResource;
  8.     USES
  9.         zFKEY;
  10. BEGIN
  11.     main;        { Call FKEY procedure }
  12. END.